crypto/tls.clientHelloMsg.supportedSignatureAlgorithms (field)

16 uses

	crypto/tls (current package)
		handshake_client.go#L120: 		hello.supportedSignatureAlgorithms = supportedSignatureAlgorithms
		handshake_messages.go#L82: 	supportedSignatureAlgorithms     []SignatureScheme
		handshake_messages.go#L172: 			if len(m.supportedSignatureAlgorithms) > 0 {
		handshake_messages.go#L177: 						for _, sigAlgo := range m.supportedSignatureAlgorithms {
		handshake_messages.go#L467: 				m.supportedSignatureAlgorithms = append(
		handshake_messages.go#L468: 					m.supportedSignatureAlgorithms, SignatureScheme(sigAndAlg))
		handshake_server.go#L868: 		SignatureSchemes:  clientHello.supportedSignatureAlgorithms,
		handshake_server_tls13.go#L358: 	if len(hs.clientHello.supportedSignatureAlgorithms) == 0 {
		handshake_server_tls13.go#L371: 	hs.sigAlg, err = selectSignatureScheme(c.vers, certificate, hs.clientHello.supportedSignatureAlgorithms)
		handshake_server_tls13.go#L462: 		len(ch.supportedSignatureAlgorithms) != len(ch1.supportedSignatureAlgorithms) ||
		handshake_server_tls13.go#L482: 	for i := range ch.supportedSignatureAlgorithms {
		handshake_server_tls13.go#L483: 		if ch.supportedSignatureAlgorithms[i] != ch1.supportedSignatureAlgorithms[i] {
		key_agreement.go#L208: 		signatureAlgorithm, err = selectSignatureScheme(ka.version, cert, clientHello.supportedSignatureAlgorithms)
		key_agreement.go#L321: 		if !isSupportedSignatureAlgorithm(signatureAlgorithm, clientHello.supportedSignatureAlgorithms) {